home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / avahi-daemon.postinst < prev    next >
Text File  |  2008-07-27  |  2KB  |  68 lines

  1. #!/bin/sh
  2. # postinst script for avahi-daemon
  3.  
  4. set -e
  5.  
  6. # summary of how this script can be called:
  7. #        * <postinst> `configure' <most-recently-configured-version>
  8. #        * <old-postinst> `abort-upgrade' <new version>
  9. #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  10. #          <new-version>
  11. #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  12. #          <failed-install-package> <version> `removing'
  13. #          <conflicting-package> <version>
  14. # for details, see http://www.debian.org/doc/debian-policy/ or
  15. # the debian-policy package
  16.  
  17. case "$1" in
  18.   configure)
  19.     if ! getent passwd avahi >/dev/null; then
  20.       adduser --disabled-password  --quiet --system \
  21.         --home /var/run/avahi-daemon --no-create-home \
  22.         --gecos "Avahi mDNS daemon" --group avahi
  23.     fi
  24.     # If the Avahi user has the old home, change it
  25.     if ! getent passwd avahi | grep -q /var/run/avahi-daemon; then
  26.         usermod -d /var/run/avahi-daemon avahi
  27.     fi
  28.  
  29.     # Add the netdev group unless it's already there
  30.     if ! getent group netdev >/dev/null; then
  31.       addgroup --quiet --system netdev || true
  32.     fi
  33.  
  34.     # update init script symlinks for new runlevels and priorities for upgrades
  35.     # from older versions
  36.     if dpkg --compare-versions "$2" lt-nl 0.6.22-4; then
  37.       echo "Reinstalling init script for new runlevels and priorities ..." >&2
  38.       # remove old init script symlinks; dh_installinit adds the proper
  39.       # update-rc.d snippet later on
  40.       update-rc.d -f avahi-daemon remove >/dev/null
  41.     fi
  42.  
  43.     # Ask the bus to reload the config file
  44.     if [ -x "/etc/init.d/dbus" ]; then
  45.       invoke-rc.d dbus force-reload || true
  46.     fi
  47.   ;;
  48.   abort-upgrade|abort-remove|abort-deconfigure)
  49.   ;;
  50.   *)
  51.     echo "postinst called with unknown argument \`$1'" >&2
  52.     exit 1
  53.   ;;
  54. esac
  55.  
  56. # Automatically added by dh_installinit
  57. if [ -x "/etc/init.d/avahi-daemon" ]; then
  58.     update-rc.d avahi-daemon start 14 2 3 4 5 . stop 86 0 1 6 . >/dev/null
  59.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  60.         invoke-rc.d avahi-daemon start || exit $?
  61.     else
  62.         /etc/init.d/avahi-daemon start || exit $?
  63.     fi
  64. fi
  65. # End automatically added section
  66.  
  67.  
  68.